.container {
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #5777AA;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar Container */
header.navbar-custom {
    width: 100;
    background-color: #5777AA !important;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo Styling */
.navbar-logo {
    max-height: 60px;
    width: auto;
    margin-right: 10px;
}


/* Text Styling */
.navbar-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
}

.navbar-text p {
    margin: 0;
    padding: 2px;
    line-height: 1.2;
    color: white;
}

.brand-name {
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-description {
    font-size: 0.9rem;
    color: white;
}

/* Styling for each section */
.section {
    margin-bottom: 40px;
}

/* Flexbox to align image and text horizontally */
.content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Image styling */
.image {
    width: 40%; /* You can adjust the percentage */
    height: auto;
    margin-right: 20px; /* Space between image and text */
}

/* Text container styling */
.text {
    width: 60%; /* Adjust the width of the text area */
}

/* Heading styling */
h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* List item styling */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Mobile View: Stack image and text vertically */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* Stack elements */
        align-items: center; /* Center alignment */
        text-align: center; /* Center text */
    }

    .image {
        width: 100%; /* Full width */
        margin-right: 0;
        margin-bottom: 15px; /* Add spacing below image */
    }

    .text {
        width: 100%; /* Full width */
    }
}


/* Image section styling */
.image-section {
    text-align: center;
    margin-bottom: 20px;
    background-color: #5777AA;
}

.image-section img {
    max-width: 100px;
    height: auto;
    border-radius: 8px;  /* Optional: to add rounded corners to image */
}
 
/* for langauage changer in header */
      .language-selector {
        position: relative;
        display: inline-block;
        margin-left: auto;
      }

      .language-btn {
        background: white;
        color: black;
        border: none;
        padding: 5px 10px;
        cursor: pointer;
        border-radius: 5px;
      }

      .language-options {
        display: none;
        position: absolute;
        background: white;
        border: 1px solid #ccc;
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100px;
        text-align: left;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
      }

      .language-options ul {
        padding: 0;
        margin: 0;
      }

      .language-options li {
        padding: 5px;
        cursor: pointer;
      }

      .language-options li:hover {
        background: #f1f1f1;
      }
    
